/**
 * iQuQ prototype — global base (load after tokens.css)
 * Locks SF Pro / system sans everywhere; no accidental serif fallbacks.
 */

@import url("./guest-browser-pad.css");

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  font-family: var(--font-sans);
}

body {
  margin: 0;
  color: var(--text-primary);
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font-sans);
  color: inherit;
}
