/* bn-typography.css — 타입 스케일
 * 핸드오프 ds-tokens.jsx TYPE_SCALE 기반.
 * .t-num 은 JetBrains Mono + tabular-nums (가격/사건번호/면적).
 */

:root {
  --bn-font:     'Pretendard', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bn-font-mono:'JetBrains Mono', 'Pretendard', ui-monospace, monospace;
}

body {
  font-family: var(--bn-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.t-display {
  font-size: 36px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
}
.t-h1 {
  font-size: 28px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
}
.t-h2 {
  font-size: 22px; font-weight: 600; line-height: 1.3; letter-spacing: -0.015em;
}
.t-h3 {
  font-size: 17px; font-weight: 600; line-height: 1.4; letter-spacing: -0.01em;
}
.t-body {
  font-size: 14px; font-weight: 400; line-height: 1.55; letter-spacing: -0.005em;
}
.t-bodysm {
  font-size: 13px; font-weight: 400; line-height: 1.5; letter-spacing: -0.005em;
}
.t-caption {
  font-size: 12px; font-weight: 500; line-height: 1.4;
}
.t-label {
  font-size: 11px; font-weight: 600; line-height: 1.3;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.t-num {
  font-family: var(--bn-font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
