/**
 * HiGuppy global content typography bridge.
 *
 * The canonical values live in the child-theme design tokens. This file only
 * connects plugin-rendered semantic content to those values; it must not
 * create a second scale or late H2 override.
 */
body {
  font-family: var(--hg-font-family);
  font-size: var(--hg-font-size-body);
  font-weight: var(--hg-font-weight-body);
  line-height: var(--hg-line-height-body);
}

body :where(p, li, dt, dd, blockquote, figcaption, small, label, summary, td, th) {
  font-family: var(--hg-font-family);
  font-size: var(--hg-font-size-body);
  line-height: var(--hg-line-height-body);
}

body :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--hg-font-family);
  line-height: var(--hg-line-height-heading);
}

body :where(button, input, select, textarea, [role="button"]) {
  font-family: var(--hg-font-family);
  font-size: var(--hg-font-size-body);
}
