From 724566cf5f8682f72298973abd33e62de3d494a9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 20:21:48 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0c38547..776a71a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,8 @@ import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Montserrat } from "next/font/google"; +import { Inter } from "next/font/google"; const notoSans = Noto_Sans({ variable: "--font-noto-sans", subsets: ["latin"], @@ -36,6 +38,15 @@ export const metadata: Metadata = { } }; +const montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -44,9 +55,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 567b48d916573ccab65bb42df200b551dc415093 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 20:21:49 +0000 Subject: [PATCH 2/2] Update theme fonts --- src/app/styles/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index b52d5ec..62c2d18 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-noto-sans), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1