/*
  KingsMC — custom font slot
  =========================
  This file is loaded on every page, but is empty by default.

  To use your OWN font files instead of a Google Fonts preset:

  1. Drop the font file(s) (.woff2 preferred, .woff/.ttf also fine)
     into custom/templates/KingsMC/fonts/

  2. Uncomment and fill in an @font-face block below for each weight
     you uploaded, e.g.:

     @font-face {
       font-family: 'MyDisplayFont';
       src: url('../fonts/MyDisplayFont-Bold.woff2') format('woff2');
       font-weight: 700;
       font-display: swap;
     }

  3. In StaffCP -> Layout -> Templates -> KingsMC -> Edit -> Typography,
     set "Typography preset" to Custom, and type the font-family name(s)
     you used above (e.g. MyDisplayFont, serif) into the Display/Body
     font fields. That's it — no other file needs to change.

  You can add as many @font-face blocks here as you like; this file
  is never overwritten by template updates.
*/

/*
  Monocraft — bundled with this template, powers the built-in "Blocky"
  typography preset (StaffCP -> Typography). It's a pixel-style font
  inspired by Minecraft's own UI typeface, but is an independent,
  from-scratch open-source recreation (SIL Open Font License 1.1) —
  it contains no Mojang assets. Full license text: fonts/Monocraft-LICENSE.txt
*/
@font-face {
  font-family: 'Monocraft';
  src: url('../fonts/Monocraft.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}

/*
  Minecraftia (by Andrew Tyler, andrewtyler.net) — NOT bundled here.
  Its license is "free for personal use; commercial use requires a
  paid license" (per the author's own EULA, linked from his font
  listings). Since KingsMC runs a store and is a commercial site,
  that license technically needs to be purchased before use — it's
  a small one-time fee, available at:
  https://andrewtyler.gumroad.com/l/minecraftia

  Once you have a licensed copy of Minecraftia-Regular.ttf:
  1. Drop it into custom/templates/KingsMC/fonts/
  2. Uncomment the block below
  3. In StaffCP -> Typography, set the preset to "Custom" and enter:
     Display font: 'Minecraftia', monospace
     Body font:    'Inter', sans-serif   (Minecraftia itself is hard
                    to read at paragraph sizes — same reasoning as
                    why the Blocky/Monocraft preset pairs its pixel
                    font with a normal body font instead of using it
                    everywhere)

  @font-face {
    font-family: 'Minecraftia';
    src: url('../fonts/Minecraftia-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
  }
*/

