Load Google Fonts Tweet this for all to see! Load Google fonts on your site using the Genesis Framework: <?php // Load Lato and Merriweather Google fonts add_action( 'wp_enqueue_scripts', 'custom_load_google_fonts' ); function custom_load_google_fonts() { wp_enqueue_style( 'google-font', 'http://fonts.googleapis.com/css?family=Lato:300,400|Merriweather:300,400', array(), PARENT_THEME_VERSION ); }