/* Global Arcade Fonts (shared across homepage + games) */

@font-face{
  font-family:"Chewy";
  src: url("./Chewy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family:"Space Grotesk";
  src: url("./SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --font-chewy: "Chewy", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-space: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  /* Change ONE line to switch fonts everywhere this stylesheet is included */
  --font-ui: var(--font-space);
}

body{font-family: var(--font-ui)}

