Enqueue Google Fonts to WordPress Theme

Add This code to your theme functions.php file

// register styles
wp_register_style('googlefont-oswald', 'http://fonts.googleapis.com/css?family=Oswald:400,300,700', array(), false, 'all');

// enqueue styles
wp_enqueue_style('googlefont-oswald');