From 868267f127e1df42938f2414800e6f6e2b7ecb5f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 14:10:01 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ee56031..380dc3e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Poppins } from "next/font/google"; +import { Montserrat } from "next/font/google"; @@ -29,10 +30,10 @@ export const metadata: Metadata = { }, }; -const poppins = Poppins({ - variable: "--font-poppins", + +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -43,7 +44,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From faf060fcb46837cbaae1f083a62b5fa4f36f9e90 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 14:10:01 +0000 Subject: [PATCH 2/2] Update theme fonts --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 0f9f89d..aa7fd03 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-poppins), sans-serif; + font-family: var(--font-montserrat), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-poppins), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1