/*
 * Metric-matched fallback for "Inter var" to eliminate the font-swap layout
 * shift GSC flagged as a CLS issue on 143 URLs (every page uses the shared
 * `application.html.erb` layout, which loads Inter var with font-display:
 * swap — text renders first in the browser's default sans-serif, then
 * reflows when Inter loads, because the two fonts have different glyph
 * widths and vertical metrics).
 *
 * This gives the fallback the same advance widths and ascent/descent as
 * Inter, so the swap causes no reflow. Values computed from Inter's and
 * Arial's actual font metrics (both 2048 unitsPerEm) via the standard
 * Fontaine/capsize technique: size-adjust scales by average character
 * width ratio, ascent/descent-override scale Inter's own metrics by the
 * inverse of that same ratio.
 */
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  ascent-override: 90.4365%;
  descent-override: 22.518%;
  line-gap-override: 0%;
  size-adjust: 107.1194%;
}
