/*
 * Self-hosted Lato, replacing the fonts.googleapis.com stylesheet.
 *
 * Two reasons this file exists rather than a <link> to Google:
 *
 * 1. A Google Fonts request hands the visitor's IP to a third party on every page load, before
 *    they have consented to anything.
 * 2. Google's `latin-ext` subset for Lato is cut for Polish: it has Ć ć Š š Ž ž but NOT Č č Đ đ.
 *    Serbian copy on this site was therefore rendering "računovodstvo" with the č in a fallback
 *    system font, mid-word. The subset built by scripts/build-fonts.js covers all of Latin
 *    Extended-A, so that no longer happens.
 *
 * Only weight 400 is shipped, matching what `?family=Lato` loaded before — bold text was already
 * being synthesised by the browser and still is. Adding a real 700 would be an improvement, but it
 * is a visual change rather than the transport-only change this file is meant to be.
 */

@font-face {
  font-family: 'Lato';
  src: url('../font/Lato-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
