/* Custom Fonts for VoidJS */

/* Add your custom fonts here using @font-face */

/* Example font declaration:
@font-face {
  font-family: 'MyCustomFont';
  src: url('./MyCustomFont.ttf') format('truetype'),
       url('./MyCustomFont.woff2') format('woff2'),
       url('./MyCustomFont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*/

/* Pixel Font Example */

@font-face {
  font-family: 'PixelFont';
  src: url('./04B_03__.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Also register with original name for compatibility */
@font-face {
  font-family: '04B_03__';
  src: url('./04B_03__.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Apply PixelFont globally */
body, * {
  font-family: 'PixelFont', monospace;
}


