From 87bf60b0684ad0ce897cdc55a39246cf7cc74cab Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:40:59 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d1e9edf..485f9f2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Open_Sans } from "next/font/google"; import { Work_Sans } from "next/font/google"; +import { Montserrat } from "next/font/google"; +import { Inter } from "next/font/google"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], @@ -38,6 +40,15 @@ const workSans = Work_Sans({ subsets: ["latin"], }); +const montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -46,7 +57,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 21d2878a500ba134c993730f315c409c928bda3d Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:41:00 +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 88a3ed2..62c2d18 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-work-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-open-sans), sans-serif; + font-family: var(--font-montserrat), sans-serif; } -- 2.49.1