How do I disable Google Fonts?
In your child theme's functions.php file add the following:
function ghostpool_disable_google_fonts_link() {
return true;
}
add_filter( 'ghostpool_disable_google_fonts_link', 'ghostpool_disable_google_fonts_link' );
