Benjduff
You can change the Lobster font to a different Google font by going to …/wp-content/themes/lobster/inc/media.php and on line 56 simply enqueue a new font. For example the Merriweather font.
Change from:
wp_enqueue_style( 'google_fonts', 'https://fonts.googleapis.com/css?family=Lobster', false, null, 'all' );
to,
wp_enqueue_style( 'google_fonts', 'https://fonts.googleapis.com/css?family=Merriweather', false, null, 'all' );
Then you’ll need to change the CSS go to line 6419 in your style.dev CSS file and change to whatever font-family you want to use.
From:
font-family: Lobster;
to,
font-family: Merriweather;
In order for the change to take effect you’ll have to delete your style.css.
Then rename your style.dev.css to style.css. For better page loading performance you can minify your CSS at CSS MInifier.
I hope this helps!
Again, just to clarify, make your CSS changes in your style.dev.css then rename it style.css. In order to do that you’ll need to delete the original style.css file.