/* Down The Cove — Webfonts
 * Sora (headings / UI sans), Inter (body), Satisfy (handwritten display accent).
 * All three are Google Fonts; loaded here from the Google Fonts CDN so the
 * system is portable. If you want fully self-hosted binaries, drop the woff2
 * files in tokens/fonts/ and swap these @import lines for @font-face rules.
 */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&family=Satisfy&display=swap");

:root {
  /* Family stacks */
  --font-sans: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Satisfy", "Brush Script MT", cursive;

  /* Aliases used across the codebase */
  --font-sora: var(--font-sans);
  --font-inter: var(--font-body);
  --font-satisfy: var(--font-display);

  /* Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}
