Note: the built-in Google Font selector is outdated and does not reflect modern web best-practices: https://developers.google.com/web/updates/2016/02/font-display
With this theme, any styling changes will be handled directly in the stylesheet as we don't have customizer options like we did with our other themes. We've done this intentionally for the bloggers who like to play in the CSS without having to jump over hoops created by the Customizer.
You will want to update your fonts in the "Additional CSS" and code snippets plugin.
Add this to your code snippets plugin with the new Google font you'd like to use:
add_action( 'wp_enqueue_scripts', 'my_custom_fonts_123' );
function my_custom_fonts_123() {
wp_enqueue_style(
'custom-google-fonts',
'//fonts.googleapis.com/css?family=Raleway',
array(),
CHILD_THEME_VERSION
);
}
And replace Raleway with your selected font. Gist available here.
and then you can call the font in the "Additional CSS" screen.
Here's some information on how to use firebug to determine which css selector you need to change: https://feastdesignco.com/how-to/use-inspect-element-troubleshoot/
Please make sure you have a backup of your files to fall back on and that you know how to restore your site via FTP or your hosting cpanel in the event of a coding error.