/* The `../` is load-bearing. Propshaft resolves a relative url() against the
 * stylesheet's own logical directory, so from shared/ a bare filename would
 * resolve to shared/GeneralSans-Variable.ttf, which does not exist. Propshaft
 * logs a warning and emits the URL UNDIGESTED rather than raising, so the
 * fonts would 404 in the browser with a green test suite. The `../` walks back
 * to the asset root, where app/assets/fonts puts these files. Proven by
 * test/assets/font_url_resolution_test.rb, which reads the served stylesheet.
 */
@font-face {
  font-family: "GeneralSans";
  font-style: normal;
  font-display: swap;
  font-weight: 200 700;
  src: url("/assets/GeneralSans-Variable-8be593c1.ttf") format("truetype");
}

@font-face {
  font-family: "GeneralSans";
  font-style: italic;
  font-display: swap;
  font-weight: 200 700;
  src: url("/assets/GeneralSans-VariableItalic-632e4aa1.ttf") format("truetype");
}
