/* DANK Realty — Typography tokens */

:root {
  /* ---- Families ----------------------------------------------------- */
  --font-display: "Montserrat", "Segoe UI", sans-serif;   /* wordmark, display */
  --font-impact:  "Archivo", "Arial Narrow", sans-serif;  /* heavy hooks       */
  --font-body:    "Manrope", system-ui, sans-serif;       /* UI + body         */
  --font-serif:   "Cormorant Garamond", Georgia, serif;   /* editorial         */

  /* ---- Type scale (px) --------------------------------------------- */
  --fs-display: 64px;   /* hero display            */
  --fs-h1:      44px;
  --fs-h2:      32px;
  --fs-h3:      24px;
  --fs-title:   20px;   /* card titles             */
  --fs-body:    16px;
  --fs-sm:      14px;
  --fs-xs:      12px;
  --fs-price:   40px;   /* the ₹-crore price figure */

  /* ---- Weights ----------------------------------------------------- */
  --fw-light:   300; /* @kind font */
  --fw-regular: 400; /* @kind font */
  --fw-medium:  500; /* @kind font */
  --fw-semibold:600; /* @kind font */
  --fw-bold:    700; /* @kind font */
  --fw-black:   800; /* @kind font */

  /* ---- Line heights ------------------------------------------------ */
  --lh-tight:   1.05; /* @kind font */
  --lh-snug:    1.2;  /* @kind font */
  --lh-normal:  1.5;  /* @kind font */
  --lh-relaxed: 1.65; /* @kind font */

  /* ---- Letter spacing ---------------------------------------------- */
  --ls-wordmark: 0.34em;  /* @kind font */
  --ls-eyebrow:  0.22em;  /* @kind font */
  --ls-wide:     0.06em;  /* @kind font */
  --ls-tight:    -0.02em; /* @kind font */

  /* ---- Semantic roles ---------------------------------------------- */
  --text-heading: var(--font-display);
  --text-body:    var(--font-body);
}
