/* ═══════════════════════════════════════════════════════════════════
   字型系統
═══════════════════════════════════════════════════════════════════ */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-primary);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700; line-height: 1.2; letter-spacing: -.02em;
  color: var(--color-primary);
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }
p  { margin-bottom: 0; }
strong { font-weight: 700; }
em { font-style: italic; }
small { font-size: var(--text-xs); }
