MNEMONIC-318: Host font instead of fetching from Google server
diff --git a/src/_includes/top.html b/src/_includes/top.html
index ed6834e..9ebae13 100644
--- a/src/_includes/top.html
+++ b/src/_includes/top.html
@@ -6,7 +6,6 @@
   <title>{{ page.title }}</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
   <meta name="generator" content="Jekyll v{{ jekyll.version }}">
-  <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
   <link rel="stylesheet" href="/css/font-awesome.min.css">
   <link rel="stylesheet" href="/css/screen.css">
   <link rel="icon" type="image/x-icon" href="/favicon.ico">
diff --git a/src/_sass/_mixins.scss b/src/_sass/_mixins.scss
index cc3c4c4..6c9f7fc 100644
--- a/src/_sass/_mixins.scss
+++ b/src/_sass/_mixins.scss
@@ -51,3 +51,39 @@
   animation: $animation;
 }
 
+@function str-replace($string, $search, $replace: "") {
+	$index: str-index($string, $search);
+
+	@if $index {
+		@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
+	}
+
+	@return $string;
+}
+
+@mixin font-face($name, $path, $weight: null, $style: null, $exts: eot woff2 woff ttf svg) {
+	$src: null;
+
+	$extmods: (
+		eot: "?",
+		svg: "#" + str-replace($name, " ", "_")
+	);
+
+	$formats: (
+		otf: "opentype",
+		ttf: "truetype"
+	);
+
+	@each $ext in $exts {
+		$extmod: if(map-has-key($extmods, $ext), $ext + map-get($extmods, $ext), $ext);
+		$format: if(map-has-key($formats, $ext), map-get($formats, $ext), $ext);
+		$src: append($src, url(quote($path + "." + $extmod)) format(quote($format)), comma);
+	}
+
+	@font-face {
+		font-family: quote($name);
+		font-style: $style;
+		font-weight: $weight;
+		src: $src;
+	}
+}
diff --git a/src/assets/fonts/Lato/Lato-Black.eot b/src/assets/fonts/Lato/Lato-Black.eot
new file mode 100755
index 0000000..444bc3a
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Black.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Black.ttf b/src/assets/fonts/Lato/Lato-Black.ttf
new file mode 100755
index 0000000..3f7819f
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Black.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Black.woff b/src/assets/fonts/Lato/Lato-Black.woff
new file mode 100755
index 0000000..a0ab25e
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Black.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Black.woff2 b/src/assets/fonts/Lato/Lato-Black.woff2
new file mode 100755
index 0000000..3ee7cd4
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Black.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BlackItalic.eot b/src/assets/fonts/Lato/Lato-BlackItalic.eot
new file mode 100755
index 0000000..7749a28
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BlackItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BlackItalic.ttf b/src/assets/fonts/Lato/Lato-BlackItalic.ttf
new file mode 100755
index 0000000..2dc1173
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BlackItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BlackItalic.woff b/src/assets/fonts/Lato/Lato-BlackItalic.woff
new file mode 100755
index 0000000..30f2c71
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BlackItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BlackItalic.woff2 b/src/assets/fonts/Lato/Lato-BlackItalic.woff2
new file mode 100755
index 0000000..6a59bdb
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BlackItalic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Bold.eot b/src/assets/fonts/Lato/Lato-Bold.eot
new file mode 100755
index 0000000..3361183
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Bold.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Bold.ttf b/src/assets/fonts/Lato/Lato-Bold.ttf
new file mode 100755
index 0000000..29f691d
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Bold.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Bold.woff b/src/assets/fonts/Lato/Lato-Bold.woff
new file mode 100755
index 0000000..c6dff51
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Bold.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Bold.woff2 b/src/assets/fonts/Lato/Lato-Bold.woff2
new file mode 100755
index 0000000..bb19504
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Bold.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BoldItalic.eot b/src/assets/fonts/Lato/Lato-BoldItalic.eot
new file mode 100755
index 0000000..3d41549
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BoldItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BoldItalic.ttf b/src/assets/fonts/Lato/Lato-BoldItalic.ttf
new file mode 100755
index 0000000..f402040
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BoldItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BoldItalic.woff b/src/assets/fonts/Lato/Lato-BoldItalic.woff
new file mode 100755
index 0000000..88ad05b
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BoldItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-BoldItalic.woff2 b/src/assets/fonts/Lato/Lato-BoldItalic.woff2
new file mode 100755
index 0000000..c4e3d80
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-BoldItalic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Hairline.eot b/src/assets/fonts/Lato/Lato-Hairline.eot
new file mode 100755
index 0000000..ca02c79
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Hairline.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Hairline.ttf b/src/assets/fonts/Lato/Lato-Hairline.ttf
new file mode 100755
index 0000000..a7365b8
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Hairline.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Hairline.woff b/src/assets/fonts/Lato/Lato-Hairline.woff
new file mode 100755
index 0000000..2297f43
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Hairline.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Hairline.woff2 b/src/assets/fonts/Lato/Lato-Hairline.woff2
new file mode 100755
index 0000000..34ca2fa
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Hairline.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HairlineItalic.eot b/src/assets/fonts/Lato/Lato-HairlineItalic.eot
new file mode 100755
index 0000000..9b5fd86
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HairlineItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HairlineItalic.ttf b/src/assets/fonts/Lato/Lato-HairlineItalic.ttf
new file mode 100755
index 0000000..919d2d6
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HairlineItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HairlineItalic.woff b/src/assets/fonts/Lato/Lato-HairlineItalic.woff
new file mode 100755
index 0000000..7ac0a14
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HairlineItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HairlineItalic.woff2 b/src/assets/fonts/Lato/Lato-HairlineItalic.woff2
new file mode 100755
index 0000000..b5fceba
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HairlineItalic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Heavy.eot b/src/assets/fonts/Lato/Lato-Heavy.eot
new file mode 100755
index 0000000..8d3784f
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Heavy.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Heavy.ttf b/src/assets/fonts/Lato/Lato-Heavy.ttf
new file mode 100755
index 0000000..ce528ef
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Heavy.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Heavy.woff b/src/assets/fonts/Lato/Lato-Heavy.woff
new file mode 100755
index 0000000..43a3c80
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Heavy.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Heavy.woff2 b/src/assets/fonts/Lato/Lato-Heavy.woff2
new file mode 100755
index 0000000..8a24365
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Heavy.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HeavyItalic.eot b/src/assets/fonts/Lato/Lato-HeavyItalic.eot
new file mode 100755
index 0000000..f77a576
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HeavyItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HeavyItalic.ttf b/src/assets/fonts/Lato/Lato-HeavyItalic.ttf
new file mode 100755
index 0000000..ae73655
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HeavyItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HeavyItalic.woff b/src/assets/fonts/Lato/Lato-HeavyItalic.woff
new file mode 100755
index 0000000..dbac8a9
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HeavyItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-HeavyItalic.woff2 b/src/assets/fonts/Lato/Lato-HeavyItalic.woff2
new file mode 100755
index 0000000..61989ae
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-HeavyItalic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Italic.eot b/src/assets/fonts/Lato/Lato-Italic.eot
new file mode 100755
index 0000000..3f82642
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Italic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Italic.ttf b/src/assets/fonts/Lato/Lato-Italic.ttf
new file mode 100755
index 0000000..b4bfc9b
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Italic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Italic.woff b/src/assets/fonts/Lato/Lato-Italic.woff
new file mode 100755
index 0000000..76114bc
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Italic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Italic.woff2 b/src/assets/fonts/Lato/Lato-Italic.woff2
new file mode 100755
index 0000000..3404f37
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Italic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Light.eot b/src/assets/fonts/Lato/Lato-Light.eot
new file mode 100755
index 0000000..f449ed5
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Light.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Light.ttf b/src/assets/fonts/Lato/Lato-Light.ttf
new file mode 100755
index 0000000..834d1c0
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Light.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Light.woff b/src/assets/fonts/Lato/Lato-Light.woff
new file mode 100755
index 0000000..77b4e14
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Light.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Light.woff2 b/src/assets/fonts/Lato/Lato-Light.woff2
new file mode 100755
index 0000000..ce49f82
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Light.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-LightItalic.eot b/src/assets/fonts/Lato/Lato-LightItalic.eot
new file mode 100755
index 0000000..a4e2e31
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-LightItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-LightItalic.ttf b/src/assets/fonts/Lato/Lato-LightItalic.ttf
new file mode 100755
index 0000000..c6ef9e0
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-LightItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-LightItalic.woff b/src/assets/fonts/Lato/Lato-LightItalic.woff
new file mode 100755
index 0000000..da3dfa3
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-LightItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-LightItalic.woff2 b/src/assets/fonts/Lato/Lato-LightItalic.woff2
new file mode 100755
index 0000000..0c897ce
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-LightItalic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Medium.eot b/src/assets/fonts/Lato/Lato-Medium.eot
new file mode 100755
index 0000000..c4114dd
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Medium.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Medium.ttf b/src/assets/fonts/Lato/Lato-Medium.ttf
new file mode 100755
index 0000000..4684a7e
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Medium.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Medium.woff b/src/assets/fonts/Lato/Lato-Medium.woff
new file mode 100755
index 0000000..39d53fd
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Medium.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Medium.woff2 b/src/assets/fonts/Lato/Lato-Medium.woff2
new file mode 100755
index 0000000..01792cb
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Medium.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-MediumItalic.eot b/src/assets/fonts/Lato/Lato-MediumItalic.eot
new file mode 100755
index 0000000..bc05daf
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-MediumItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-MediumItalic.ttf b/src/assets/fonts/Lato/Lato-MediumItalic.ttf
new file mode 100755
index 0000000..673b6e4
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-MediumItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-MediumItalic.woff b/src/assets/fonts/Lato/Lato-MediumItalic.woff
new file mode 100755
index 0000000..724962b
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-MediumItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-MediumItalic.woff2 b/src/assets/fonts/Lato/Lato-MediumItalic.woff2
new file mode 100755
index 0000000..1cc7965
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-MediumItalic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Regular.eot b/src/assets/fonts/Lato/Lato-Regular.eot
new file mode 100755
index 0000000..11e3f2a
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Regular.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Regular.ttf b/src/assets/fonts/Lato/Lato-Regular.ttf
new file mode 100755
index 0000000..74decd9
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Regular.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Regular.woff b/src/assets/fonts/Lato/Lato-Regular.woff
new file mode 100755
index 0000000..ae1307f
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Regular.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Regular.woff2 b/src/assets/fonts/Lato/Lato-Regular.woff2
new file mode 100755
index 0000000..3bf9843
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Regular.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Semibold.eot b/src/assets/fonts/Lato/Lato-Semibold.eot
new file mode 100755
index 0000000..d46c5f9
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Semibold.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Semibold.ttf b/src/assets/fonts/Lato/Lato-Semibold.ttf
new file mode 100755
index 0000000..faf591e
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Semibold.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Semibold.woff b/src/assets/fonts/Lato/Lato-Semibold.woff
new file mode 100755
index 0000000..794417f
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Semibold.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Semibold.woff2 b/src/assets/fonts/Lato/Lato-Semibold.woff2
new file mode 100755
index 0000000..5916925
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Semibold.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-SemiboldItalic.eot b/src/assets/fonts/Lato/Lato-SemiboldItalic.eot
new file mode 100755
index 0000000..373a1ca
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-SemiboldItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-SemiboldItalic.ttf b/src/assets/fonts/Lato/Lato-SemiboldItalic.ttf
new file mode 100755
index 0000000..4ea1e8f
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-SemiboldItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-SemiboldItalic.woff b/src/assets/fonts/Lato/Lato-SemiboldItalic.woff
new file mode 100755
index 0000000..d1df767
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-SemiboldItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-SemiboldItalic.woff2 b/src/assets/fonts/Lato/Lato-SemiboldItalic.woff2
new file mode 100755
index 0000000..5e6ac27
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-SemiboldItalic.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Thin.eot b/src/assets/fonts/Lato/Lato-Thin.eot
new file mode 100755
index 0000000..28022c9
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Thin.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Thin.ttf b/src/assets/fonts/Lato/Lato-Thin.ttf
new file mode 100755
index 0000000..4fca8bd
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Thin.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Thin.woff b/src/assets/fonts/Lato/Lato-Thin.woff
new file mode 100755
index 0000000..760b124
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Thin.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-Thin.woff2 b/src/assets/fonts/Lato/Lato-Thin.woff2
new file mode 100755
index 0000000..2c4f52f
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-Thin.woff2
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-ThinItalic.eot b/src/assets/fonts/Lato/Lato-ThinItalic.eot
new file mode 100755
index 0000000..673f522
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-ThinItalic.eot
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-ThinItalic.ttf b/src/assets/fonts/Lato/Lato-ThinItalic.ttf
new file mode 100755
index 0000000..223c133
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-ThinItalic.ttf
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-ThinItalic.woff b/src/assets/fonts/Lato/Lato-ThinItalic.woff
new file mode 100755
index 0000000..ef8de9a
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-ThinItalic.woff
Binary files differ
diff --git a/src/assets/fonts/Lato/Lato-ThinItalic.woff2 b/src/assets/fonts/Lato/Lato-ThinItalic.woff2
new file mode 100755
index 0000000..e15214f
--- /dev/null
+++ b/src/assets/fonts/Lato/Lato-ThinItalic.woff2
Binary files differ
diff --git a/src/css/screen.scss b/src/css/screen.scss
index 37bbb98..931673f 100644
--- a/src/css/screen.scss
+++ b/src/css/screen.scss
@@ -14,6 +14,12 @@
   box-sizing: border-box;
 }
 
+
+@include font-face(Lato, /assets/fonts/Lato/Lato-Light, 300, normal, eot wof2 woff);
+@include font-face(Lato, /assets/fonts/Lato/Lato-Regular, 400, normal, eot wof2 woff);
+@include font-face(Lato, /assets/fonts/Lato/Lato-Bold, 700, normal, eot wof2 woff);
+@include font-face(Lato, /assets/fonts/Lato/Lato-Black, 900, normal, eot wof2 woff);
+
 body {
   font: 300 21px Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
   color: #333;
@@ -266,7 +272,7 @@
 
 .intro {
   background-color: #558C89;
-  font-weight: bold;
+  font-weight: 900;
   @include animation(secfadein 2s);
 
   color: white;
@@ -303,7 +309,7 @@
 
 .ingredients {
   background-color: steelblue;
-  font-weight: bold;
+  font-weight: 900;
   text-align: center;
   border: 5px solid white;
   @include animation(secfadein 2s);