/**
 * Font assets. Remember to subset and compress fonts as necessary.
 *
 * [1] Install python FontTools and Brotli via pip: `pip install fonttools brotli`.
 * [2] The following command will subset the Latin and Extended Latin character sets (includes Maltese):
 *
 * ```
 *   pyftsubset font.woff2
 *     --unicodes="0020-007F,00A0-00FF,0100-017F"
 *     --layout-features="*"
 *     --flavor="woff2"
 *     --with-zopfli
 * ```
*/

@font-face {
  font-family: '';
  font-style: normal;
  font-weight: 400;
  // font-weight: 100 900; (setting range on variable font)
  font-display: swap;
  src: url('../assets/fonts/font.woff2') format('woff2');
}
