/**
 * comAssets/fonts/cairo.css
 * @version 1.0.0
 * Changelog
 *   1.0.0 — Initial @font-face declarations for Cairo (Arabic web font),
 *           weights 400/600/700, served from the existing TTFs in this folder.
 *           Used by web pages (NOT email templates — those stay font-agnostic).
 */

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/comAssets/fonts/Cairo-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/comAssets/fonts/Cairo-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/comAssets/fonts/Cairo-Bold.ttf") format("truetype");
}