/* ============================================================
   colors_and_type.css
   Global design tokens — fonts, easing
   Referenced by index.html and insights/style.css
   ============================================================ */

@font-face {
  font-family: "Pretendard Variable";
  font-display: swap;
  font-style: normal;
  font-weight: 45 920;
  src: url("assets/fonts/PretendardVariable.woff2") format("woff2-variations");
}

:root {
  /* ── Font stacks ── */
  --font-sans:
    "Pretendard Variable", Pretendard,
    -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", "Segoe UI", sans-serif;

  --font-mono:
    ui-monospace, "SF Mono", "Menlo",
    "JetBrains Mono", "Fira Code",
    "Cascadia Code", Consolas,
    "Courier New", monospace;

  /* ── Easing ── */
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --ease-in:  cubic-bezier(0.4, 0.0, 1.0, 1.0);
  --ease-mid: cubic-bezier(0.4, 0.0, 0.2, 1.0);
}
