From 920da4e4cd26f47f16428cb9856bd1c322582c73 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 20:14:23 +0000 Subject: [PATCH] Update theme fonts --- src/index.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.css b/src/index.css index a62ba4f..01080b1 100644 --- a/src/index.css +++ b/src/index.css @@ -1,3 +1,4 @@ +@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap'); /* Hotel - Dark Luxury */ @import "tailwindcss"; @import "./styles/masks.css"; @@ -95,7 +96,7 @@ --color-background-accent: var(--background-accent); /* Fonts */ - --font-sans: "Inter Tight", sans-serif; + --font-sans: 'Open Sans', sans-serif; --font-serif: "Playfair Display", serif; --font-tight: "Inter Tight", sans-serif; --font-mono: monospace; @@ -145,7 +146,7 @@ body { margin: 0; background-color: var(--background); color: var(--foreground); - font-family: "Inter Tight", sans-serif; + font-family: 'Open Sans', sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -158,7 +159,7 @@ h3, h4, h5, h6 { - font-family: "Playfair Display", serif; + font-family: 'Inter', sans-serif; } h1 { -- 2.49.1