diff --git a/css/shiny.css b/css/shiny.css
index 29032b7..8d7f7bc 100644
--- a/css/shiny.css
+++ b/css/shiny.css
@@ -1,4 +1,3 @@
-@import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,800);
 /* Import Font Families */
 /* Base Admin Theme Styles */
 * {
diff --git a/template.php b/template.php
index 1b28459..d711e55 100644
--- a/template.php
+++ b/template.php
@@ -26,6 +26,8 @@ function shiny_preprocess_html(&$vars) {
   drupal_add_css(path_to_theme() . '/css/ie7.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE));
   // Add conditional CSS for IE6.
   drupal_add_css(path_to_theme() . '/css/ie6.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 6', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE));
+  // Add external CSS for Open Sans from Google Fonts
+  drupal_add_css('//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600,800',array('type' => 'external'));
 }
 
 /**
