diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6ddbdbd..88fa862 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,5 +1,5 @@
import type { Metadata } from "next";
-import { Prata } from "next/font/google";
+import { Prata, Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
@@ -10,6 +10,11 @@ const prata = Prata({
weight: ["400"],
});
+const inter = Inter({
+ variable: "--font-inter",
+ subsets: ["latin"],
+});
+
export const metadata: Metadata = {
title: "Joule VC | Venture Capital in Tel Aviv",
description: "Israeli venture capital firm investing in infrastructure, fintech, and enterprise software from seed to Series B. Based in Tel Aviv.",
@@ -49,7 +54,7 @@ export default function RootLayout({