/* Genyus School — Typography
   Display: Helotypo (brand display) & Anton (heavy poster headlines)
   Text/UI: Nobel Uno (geometric humanist sans) */

:root {
  --font-display: "Helotypo", "Nobel Uno", system-ui, sans-serif;   /* headings, brand voice */
  --font-poster:  "Anton", "Helotypo", Impact, sans-serif;          /* huge vibrant headlines */
  --font-body:    "Nobel Uno", system-ui, -apple-system, "Segoe UI", sans-serif; /* everything else */

  /* Weights (Nobel Uno ships 300–900) */
  --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:    900; /* @kind font */

  /* Type scale — 1.25 major-third, base 16px */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-md:   1.125rem;  /* 18 */
  --text-lg:   1.375rem;  /* 22 */
  --text-xl:   1.75rem;   /* 28 */
  --text-2xl:  2.25rem;   /* 36 */
  --text-3xl:  3rem;      /* 48 */
  --text-4xl:  4rem;      /* 64 */
  --text-5xl:  5.5rem;    /* 88 */

  /* 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 */

  /* Tracking */
  --tracking-tight:  -0.02em; /* @kind font */
  --tracking-normal: 0; /* @kind font */
  --tracking-wide:   0.04em; /* @kind font */
  --tracking-caps:   0.12em;  /* @kind font */
}
