From 1748b26b7bb93f69e0761fc0f5b924bb8baf6d20 Mon Sep 17 00:00:00 2001 From: Hikari Date: Tue, 3 Mar 2026 16:56:34 -0800 Subject: [PATCH] style: update fonts to match style guide Replaces the custom Vampyr font with the standard Google Fonts from the NHCarrigan style guide. Assigns Griffy to headings, Kalam to body, Creepster to .witchy-accent, and Henny Penny to .mystical-text. --- src/fonts/font-face.css | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/src/fonts/font-face.css b/src/fonts/font-face.css index d856154..a27bef2 100644 --- a/src/fonts/font-face.css +++ b/src/fonts/font-face.css @@ -1,8 +1,22 @@ -@font-face { - font-family: "Vampyr"; - src: url("https://cdn.nhcarrigan.com/fonts/vampyr.ttf") format("truetype"); +@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Creepster&family=Griffy&family=Henny+Penny&display=swap'); + +body { + font-family: "Kalam", cursive !important; } -* { - font-family: "Vampyr", monospace !important; -} \ No newline at end of file +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Griffy", cursive !important; +} + +.witchy-accent { + font-family: "Creepster", cursive; +} + +.mystical-text { + font-family: "Henny Penny", cursive; +}