/* Retell Design System — Webfonts
   ----------------------------------------------------------------
   Primary UI typeface: Inter (the library token references the
   "Inter Variable" build). Display typeface in the Figma library is
   "Helvetica Now Display" (proprietary) — upload the licensed file
   and add its @font-face below; until then --font-display falls back
   to Inter Tight. Mono token references "Roboto Mono". */

/* Convenience webfont CSS (family "Inter" / "Inter Tight") used by
   tokens/typography.css and the component primitives. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700&display=swap');

/* ── Genuine @font-face for the exact family names the imported
   Figma tokens reference (real Inter + real Roboto Mono, served from
   @fontsource on jsDelivr). NOT substitutes — these are the actual
   open-source families under their real names. ───────────────────── */

/* "Inter Variable" — referenced by --font-font-sans */
@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource-variable/inter@5.0.18/files/inter-latin-wght-normal.woff2") format("woff2-variations");
}

/* "Roboto Mono" — referenced by --font-mono */
@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource-variable/roboto-mono@5.0.18/files/roboto-mono-latin-wght-normal.woff2") format("woff2-variations");
}
