@import "tokens/fonts.css";
@import "tokens/colors.css";
@import "tokens/typography.css";
@import "tokens/spacing.css";
@import "tokens/effects.css";

/* Mobile rendering guards:
   - text-size-adjust stops Android Chrome's font boosting (auto-inflating text)
   - overflow-x clip stops any stray overflow from letting the page scale out/in */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: clip;
}
