/* Taichung Job Service — Typography tokens
   Font stack from global.css:424-425. Every landing size is fluid clamp().
   CJK display type is spaced with wide letter-spacing; do NOT apply that tracking to Latin body copy. */
:root {
  --font-main: 'GenSenRounded2 TW', 'Inter', 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  --font-body: var(--font-main);
  --font-display: var(--font-main);

  /* --- Landing fluid type scale (size / the intended weight & tracking documented in specimen cards) --- */
  --text-welcome-title: clamp(40px, 6vw, 88px);   /* weight 800, ls .12em, lh 1.2 */
  --text-card-label:     clamp(28px, 4vw, 56px);   /* weight 800, ls .18em (spaced CJK) */
  --text-select:         clamp(16px, 1.6vw, 22px); /* weight 700 */
  --text-footer:         clamp(12px, 1.2vw, 18px); /* ls .06em */
  --text-modal-title:    clamp(22px, 2.4vw, 32px); /* weight 800, ls .06em */
  --text-modal-body:     clamp(13px, 1.1vw, 16px); /* lh 1.7–1.8 */
  --text-button:         clamp(15px, 1.3vw, 19px); /* weight 700, ls .04em */

  /* --- Weights --- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  --weight-black: 800;

  /* --- Line heights --- */
  --lh-title: 1.2; /* @kind other */
  --lh-body: 1.7; /* @kind other */
  --lh-terms: 1.8; /* @kind other */

  /* --- Letter spacing --- */
  --ls-title: .12em;
  --ls-label: .18em;   /* spaced CJK display only */
  --ls-footer: .06em;
  --ls-button: .04em;
}
