/* css/fonts.css
 *
 * Brat Town is the custom display font referenced by the .lbrn2 file for
 * engraved text. The user supplies BratTown.ttf (or .otf) into css/fonts/.
 *
 * font-display: block — keep the browser invisible-text until the font
 * loads, so we never flash an OS-default font (would be misleading
 * preview). If the file is missing the browser falls back after ~3s.
 */

@font-face {
  font-family: 'Brat Town';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/BratTown.ttf') format('truetype'),
       url('fonts/BratTown.otf') format('opentype');
}
