Could you let us know which font you are looking to change? The front uses whatever font your theme is using. Are you looking to change the PDF report, certificate, front pages or the WP admin area? We only change the font according to what is set at settings for PDF report.
Thank you for your reply. I’m using the default coursepress theme. I’m looking for away to change the font in course structure.

Sorry for the delay. You can edit the theme’s style.css and replace Lato with a font that works for you.
If you want to add a different Google font, eg Raleway you will need to register it by adding it to the functions.php file:
wp_register_style(
'google_fonts_raleway',
'//fonts.googleapis.com/css?family=Raleway:300,400'
);
wp_enqueue_style( 'google_fonts_raleway' );
I hope this helps!