Hi there,
Please install the child theme and add this code in the functions.php file:
add_action( 'wp_enqueue_scripts', 'load_script_content' );
function load_script_content() {
wp_enqueue_script( 'my-script', '//fast.fonts.net/jsapi/6c44ca84-ec3f-40c5-a0c7-7532d7eeb8f3.js', array(), '1.0.0', true );
}
Then add this in the custom CSS:
h1, h2, h3, h4, h5, h6 {
font-family: "Century Gothic WGL W01 Regular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
Hope this helps.