diff --git a/src/components/header.lisp b/src/components/header.lisp
index 86a51d2..8b4ec24 100644
--- a/src/components/header.lisp
+++ b/src/components/header.lisp
@@ -16,7 +16,7 @@
      (p :class "z-20 text-3xl font-bold"
        (a :preload "mouseover" :href "/" "skyizwhite"))
      (nav :class "flex items-end"
-       (ul :preload "mouseover" :class "flex gap-4 text-xl font-medium"
+       (ul :preload "mouseover" :class "flex gap-4 text-xl font-bold"
          (loop
            :for (href label) :in *nav-menu* :collect
               (if (string= href (request-uri *request*))
@@ -56,7 +56,7 @@
            "Menu")
          (ul 
            :preload "mousedown"
-           :class "flex flex-col h-fit gap-8 text-3xl font-medium"
+           :class "flex flex-col h-fit gap-8 text-3xl font-bold"
            (loop
              :for (href label) :in (append '(("/" "home")) *nav-menu*) :collect
                 (if (string= href (request-uri *request*))
diff --git a/src/components/scripts.lisp b/src/components/scripts.lisp
index edfdb31..e841c4f 100644
--- a/src/components/scripts.lisp
+++ b/src/components/scripts.lisp
@@ -5,7 +5,7 @@
 (in-package #:website/components/scripts)
 
 (defparameter *google-font-url*
-  "https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap")
+  "https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap")
 
 (defun bust-cache (url)
   (format nil "~a?v=~a" url #.(get-universal-time)))
diff --git a/static/style/global.css b/static/style/global.css
index 90d006c..b9a24cd 100644
--- a/static/style/global.css
+++ b/static/style/global.css
@@ -11,13 +11,6 @@
   }
 }
 
-@supports (font-variation-settings: medium) {
-  :root {
-    font-family: "Zen Maru Gothic", sans-serif;
-  }
-}
-
-
 @supports (font-variation-settings: bold) {
   :root {
     font-family: "Zen Maru Gothic", sans-serif;