/* Font loading fix */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-bold.woff2') format('woff2');
}

/* Font fixes and overrides */

/* Apply a pixelated/monospace style without relying on missing fonts */
.font-cute {
  font-family:
    'DM Mono', 'Courier New', 'SFMono-Regular', Menlo, Monaco, Consolas,
    'Liberation Mono', monospace !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 1.1em !important;
  line-height: 1.2 !important;
}

/* Fix for overall font sizing */
html {
  font-size: 16px;
}

/* Ensure consistent font smoothing */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
