/*
 * Inter, the product's one typeface, for the web target.
 *
 * Two faces at exactly the two weights the type scale uses, 400 and 700. The
 * same two files are embedded into the iOS and Android builds by the expo-font
 * entry in app.json, so this folder is the single copy: expo export copies it
 * verbatim into the client output, which is what makes /fonts/ a stable URL
 * the pre-rendered document can link before any script runs.
 *
 * font-display: swap paints the declared fallback stack until a face arrives
 * rather than leaving text invisible.
 *
 * Inter 4.1, SIL Open Font License 1.1 — LICENSE.txt beside these files.
 */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Inter-Regular.ttf) format("truetype");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/Inter-Bold.ttf) format("truetype");
}
