From ef06fec6a2474883e79a45f18df4a76cf319e480 Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Thu, 18 Jun 2026 08:46:15 +0530 Subject: [PATCH] style: replace Inter with Space Grotesk across full website --- frontend/src/index.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index 108ce24..7dde08a 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -1,11 +1,15 @@ -@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap'); @import "tailwindcss"; @plugin "@tailwindcss/typography"; @theme { - --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-sans: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; +} + +*, *::before, *::after { + font-family: 'Space Grotesk', sans-serif; } body { - font-family: 'Inter', sans-serif; + font-family: 'Space Grotesk', sans-serif; }