/* =============================================================
   Emberscale Arcade — Fonts
   The UI is designed around a clean system stack so it renders
   instantly with no network font fetch. To brand it with custom
   fonts, drop the files into /fonts and uncomment the @font-face
   blocks below, then update --font-display / --font-body.
   ============================================================= */

:root {
  --font-display: 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
}

/* Example custom-font slots (add your licensed font files to /fonts):

@font-face {
  font-family: 'EmberDisplay';
  src: url('ember-display.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'EmberBody';
  src: url('ember-body.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

Then set:
:root {
  --font-display: 'EmberDisplay', sans-serif;
  --font-body: 'EmberBody', sans-serif;
}
*/
