How to Add Fonts in Genesis Child Theme
A reader recently asked:
Are additional fonts added via a CSS change or via a plugin? If they are added via CSS, how would I do that? I want my title, tag line, and headers changed.
Fonts are added through the functions.php file – you should see a section with Google fonts being imported, something like this:
//* Enqueue Google Fonts
add_action( 'wp_enqueue_scripts', 'genesis_sample_google_fonts' );
function genesis_sample_google_fonts() {
wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Muli|Chivo:300,400,700,900', array(), CHILD_THEME_VERSION );
}
You can add multiple fonts by separating them with | as shown above.