/* 전 페이지 공용 토큰 시트. 첫 stylesheet 로 로드.
   색 토큰은 아직 각 시트 소유(논의 중) — 여기에는 타이포만 둔다.

   폰트 파일은 /fonts/ 에 동봉된 Inter 4.1(SIL Open Font License 1.1,
   app/public/fonts/LICENSE-Inter.txt). 이전에는 이름만 스택에 있고
   @font-face 가 없어 기계마다 다른 폰트로 렌더됐다. */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
}

:root {
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

/* 형태 토큰. 신호 언어 pilot(2026-08-30 승인)에서 온 형태 스케일이다 —
   작업 화면의 면은 불투명하고, 모서리는 작고, 그림자는 1px 경계를 대신하는
   최소한만 남긴다. 색은 여전히 각 시트 소유다(위 주석과 같은 규칙).
   근거와 금지 규칙은 레포 루트 DESIGN.md. */
:root {
  --r-card: 10px;
  --r-ctl: 7px;
  --shadow-1: 0 1px 2px rgba(23, 32, 51, 0.07);
}
