/* =====================================================
   ELVA — FONTS
   • Inter ............ body & all platform UI  (--font-sans)
   • Playfair Display . editorial serif         (--font-serif)
   • Untitled Serif ... landing / hero headings (--font-untitled-serif)
                        shipped as a local woff2 in assets/fonts/

   Inter & Playfair are loaded from Google Fonts (Next.js uses
   next/font in production; here we link the CDN). Untitled Serif
   is a licensed Klim Type Foundry face — only the regular weight
   binary travels with the platform.
   ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

@font-face {
  font-family: "Untitled Serif";
  src: url("../assets/fonts/untitled-serif-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
