/* ================================================================
   Spoonity Macondo — webfonts
   Inter is the UI font (--font-sans in the library).
   Figtree is the consumer-app base font; Source Code Pro is mono.
   All three load from Google Fonts (exact families used by the
   product — see macondo README consumer CSS).
   ================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..700;1,14..32,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --font-sans: "Inter", "Figtree", system-ui, -apple-system, sans-serif;
  --font-figtree: "Figtree", "Inter", system-ui, sans-serif;
  --font-mono: "Source Code Pro", ui-monospace, monospace;
}
