import { Outfit, Phudu } from "next/font/google"

/** App-wide sans + mono stack (Google Fonts Phudu, variable wght 300–900). */
export const fontSans = Phudu({
  subsets: ["latin"],
  weight: "variable",
  variable: "--font-phudu",
  display: "swap",
  preload: true,
})

/** Paragraphs + vendor dashboard shell */
export const fontDashboard = Outfit({
  subsets: ["latin"],
  weight: "variable",
  variable: "--font-outfit-src",
  display: "swap",
  preload: true,
})
