diff --git a/_sass/custom/overrides.scss b/_sass/custom/overrides.scss
index 0251b22b002b072fce27a2e9e6692022a8bec07a..64c5fb1020cba80cda9165ecbb8e3048dce8769e 100644
--- a/_sass/custom/overrides.scss
+++ b/_sass/custom/overrides.scss
@@ -2,79 +2,6 @@ body {
   text-rendering: optimizeLegibility;
 }
 
-div.navigation,
-h1.site-title,
-footer.site-footer {
-  @include mq(lg) {
-    width: $nav-width;
-  }
-}
-
-div.side-bar {
-  @include mq(md) {
-    padding-top: 0;
-    width: $nav-width;
-  }
-
-  @include mq(lg) {
-    margin-left: calc((100% - #{$nav-width + $content-width}) / 2);
-  }
-}
-
-h1.site-title {
-  @extend .fs-6;
-  margin: 0;
-  flex: 0 0 auto;
-
-  @include mq(md) {
-    position: relative;
-  }
-
-  a {
-    color: $body-heading-color;
-    background: none;
-
-    &:hover {
-      background: none;
-    }
-  }
-}
-
-button.navigation-list-toggle {
-  @extend .fs-3;
-  right: $gutter-spacing-sm;
-}
-
-footer.site-footer {
-  @extend .text-small, .text-grey-dk-000;
-}
-
-div.main-content-wrap {
-  overflow-y: auto;
-
-  .main-content {
-    @include mq(md) {
-      padding-left: $gutter-spacing;
-    }
-  }
-}
-
-nav.aux-nav {
-  @extend .text-small;
-  padding-bottom: $sp-4;
-
-  @include mq(md) {
-    margin-left: $sp-4;
-    padding: $sp-1 0;
-  }
-
-  ul {
-    list-style: none;
-    margin: 0;
-    padding: 0;
-  }
-}
-
 table ul:last-child {
   margin-bottom: 0;
 }
diff --git a/_sass/custom/variables.scss b/_sass/custom/variables.scss
index 1e6e3b3034998e767008c2a58def292a40fbd44a..489daed065c756d71c388a29c70d43e080cc66c7 100644
--- a/_sass/custom/variables.scss
+++ b/_sass/custom/variables.scss
@@ -1,3 +1,6 @@
+// Typography
+$body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
+
 // Colors
 $link-color: $blue-100;
 $sidebar-color: $body-background-color;