diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14391f1..c9d7d9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import { Inter, Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); +const poppins = Poppins({ + variable: "--font-poppins", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export const metadata: Metadata = { title: "Disruptive Fund - Israeli VC Investing in Innovation", description: "Israeli venture capital fund backing breakthrough startups. We invest in deep tech, SaaS, and fintech innovations from Israel and the region.", @@ -43,7 +49,7 @@ export default function RootLayout({ {children}