/*
  "Font Awesome 6 Pro" -> Font Awesome 6 Free (solid) alias.

  style.css declares font-family:"Font Awesome 6 Pro" at three sites
  (.iti__arrow::after, .input-field, .styledSelect:after). No Pro kit ships
  with this app and the Pro release CDN answers 403 to non-kit clients, so
  those three glyphs render nothing today. This maps the Pro family name onto
  the vendored Free solid face.

  The family holds exactly one face declared over the full 100-900 range, so
  the existing font-weight:600 declarations resolve to it without edits to
  style.css.
*/
@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url(../webfonts/fa-solid-900.woff2) format("woff2"),
       url(../webfonts/fa-solid-900.ttf) format("truetype");
}

/*
  Pro-only icon names used by the views, mapped onto the nearest Free solid
  glyph so the control renders instead of an empty circle.
  bars-sort is the menu button on the dashboard, swipe, coach, caddie, watch
  and tee-time lobby headers.
*/
.fa-bars-sort::before {
  content: "\f0c9";
}
/* cards-blank: the side-games footer tab on lobby scoring and results. */
.fa-cards-blank::before {
  content: "\f5fd";
}
/* messages: the dashboard inbox shortcut. */
.fa-messages::before {
  content: "\f086";
}
/* user-crown: transfer-ownership on the edit tee-time screen. */
.fa-user-crown::before {
  content: "\f521";
}
