import { DM_Sans, Playfair_Display, Syne } from "next/font/google"; /** Hero-only pairing — unchanged from pre-Antebas layout. */ export const heroDisplay = Syne({ subsets: ["latin"], variable: "--font-hero-display", weight: ["600", "700", "800"], }); export const heroBody = DM_Sans({ subsets: ["latin"], variable: "--font-hero-body", }); export const heroSerif = Playfair_Display({ subsets: ["latin"], variable: "--font-hero-serif", weight: ["600", "700", "800"], }); export const heroFontVariables = [ heroDisplay.variable, heroBody.variable, heroSerif.variable, ].join(" ");