
The genesis-sample theme embeds Google Fonts. To remove the font styles that load fonts from Google servers, the following code can be used:
add_action( 'wp_print_styles', 'cw_dequeue_google_fonts_style' );
function cw_dequeue_google_fonts_style() {
wp_dequeue_style( 'genesis-sample-fonts' );
}
Integrate this code either via a custom plugin, the Code Snippets plugin or the functions.php into the WordPress.
The article why Google fonts should not be loaded from Google servers, but locally from web hosting, can be found here.