Hi there,
Thanks for writing around! I checked your site and I don’t see the Helvetica font being loaded from an external source. Also I believe it’s not a google font, it’s a system font and you can use it without loading or installing the font. However you can try adding the following code in your Child Theme’s functions.php file to remove the google fonts.
// Remove Google Fonts
// =============================================================================
function x_remove_google_fonts(){
wp_dequeue_style( 'x-font-custom' );
wp_dequeue_style( 'x-font-standard' );
}
add_action( 'wp_enqueue_scripts', 'x_remove_google_fonts', 100 );
// =============================================================================
Or you can follow this thread https://theme.co/apex/forum/t/re-dequeue-google-fonts/12636/4
For the breadcrumbs font, you can change the Font Family from the Breadcrumbs element to remove it.
Hope this helps!