/*
 * Site-wide type scale multiplier.
 * Bumps the root font-size by percentage, which cascades into every rem-based
 * Tailwind utility and --text-site-* token defined in tailwind-theme.css
 * (those tokens are authored relative to the browser's 100% default).
 * Kept as its own stylesheet, loaded after fonts.css and before
 * output.css, so the scale can be tuned in one place without touching
 * the token definitions themselves.
 */
html {
  font-size: 100%;
}
