Index: wp-content/themes/twentytwelve/functions.php
===================================================================
--- wp-content/themes/twentytwelve/functions.php	(revision 21372)
+++ wp-content/themes/twentytwelve/functions.php	(working copy)
@@ -112,9 +112,11 @@
 	 * Depends on Theme Options setting.
  	 */
 	$options = $twentytwelve_options->get_theme_options();
-	if ( $options['enable_fonts'] )
-		wp_enqueue_style( 'twentytwelve-fonts', 'http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' );
-
+	if ( $options['enable_fonts'] ) {
+		$protocol = is_ssl() ? 'https' : 'http';
+		wp_enqueue_style( 'twentytwelve-fonts', "$protocol://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700" );
+	}
+	
 	/**
 	 * Load our main CSS file.
 	 */
