Hi,
We are not loading any gopricing. On demand feature of js files loading is not currently. We will consider it in future upgrade.
You can remove google fonts through this script. Just paste this script at functions.php of child theme.
function sf_enqueue_styles_new(){
wp_deregister_style('redux-google-fonts');
wp_dequeue_style( 'redux-google-fonts' );
}
add_action('wp_enqueue_scripts', 'sf_enqueue_styles_new', 111);
Thanks
Mohammad