diff --git a/sass/base/_font.scss b/sass/base/_font.scss
index 907e406..6a26fe6 100644
--- a/sass/base/_font.scss
+++ b/sass/base/_font.scss
@@ -1,5 +1,5 @@
-$font-default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
-$font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
+$font-default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
+$font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace !default;
$font-icon: FontAwesome;
$font-icon-path: "/font/fontawesome-webfont";
@@ -14,4 +14,4 @@ $font-icon-path: "/font/fontawesome-webfont";
url('#{$font-icon-path}.svg#FontAwesomeRegular') format('svg');
font-weight: normal;
font-style: normal;
-}
\ No newline at end of file
+}
diff --git a/sass/screen.scss b/sass/screen.scss
index 1f83d49..a82c919 100644
--- a/sass/screen.scss
+++ b/sass/screen.scss
@@ -4,4 +4,6 @@
@import "base";
@import "parts";
-@import "plugins";
\ No newline at end of file
+@import "plugins";
+
+@import "custom/styles";
diff --git a/source/_includes/archive_post.html b/source/_includes/archive_post.html
index 65e923f..04d4d5f 100644
--- a/source/_includes/archive_post.html
+++ b/source/_includes/archive_post.html
@@ -10,10 +10,10 @@
\ No newline at end of file
diff --git a/source/_includes/article.html b/source/_includes/article.html
index 1386156..0ccc013 100644
--- a/source/_includes/article.html
+++ b/source/_includes/article.html
@@ -21,6 +21,6 @@
{% include post/date.html %}{{ time }}
{% include post/categories.html %}
{% if site.disqus_short_name and site.disqus_show_comment_count == true %}
-
+
{% endif %}
\ No newline at end of file
diff --git a/source/archives/index.html b/source/archives/index.html
new file mode 100644
index 0000000..e4bc23c
--- /dev/null
+++ b/source/archives/index.html
@@ -0,0 +1,8 @@
+---
+layout: default
+title: Blog Archives
+---
+
+{% for post in site.posts reverse %}
+ {% include archive_post.html %}
+{% endfor %}
\ No newline at end of file