﻿/**
 * MBRSC DDA Theme — dubai-font.css
 *
 * Dubai Font — Self-hosted @font-face declarations
 *
 * Font files confirmed present in assets/fonts/:
 *   Dubai-Light.woff2    (55,724 bytes)  ✅
 *   Dubai-Light.woff     (81,524 bytes)  ✅
 *   Dubai-Regular.woff2  (57,120 bytes)  ✅
 *   Dubai-Regular.woff   (82,500 bytes)  ✅
 *   Dubai-Medium.woff2   (57,064 bytes)  ✅
 *   Dubai-Medium.woff    (82,368 bytes)  ✅
 *   Dubai-Bold.woff2     (57,504 bytes)  ✅
 *   Dubai-Bold.woff      (82,952 bytes)  ✅
 *
 * Loaded via: wp_enqueue_style('dubai-font') in functions.php
 * This is the PREFERRED WordPress method — loaded before dds-tokens.css
 * so the font is available when CSS custom properties are parsed.
 *
 * @package MBRSC_DDA_Theme
 * @version 1.0.0
 */

/* ── Light (300) ─────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Light.woff2') format('woff2'),
       url('../fonts/Dubai-Light.woff')  format('woff');
  font-weight: 300;
  font-style:  normal;
  font-display: swap;
}

/* ── Regular (400) ───────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Regular.woff2') format('woff2'),
       url('../fonts/Dubai-Regular.woff')  format('woff');
  font-weight: 400;
  font-style:  normal;
  font-display: swap;
}

/* ── Medium (500) ────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Medium.woff2') format('woff2'),
       url('../fonts/Dubai-Medium.woff')  format('woff');
  font-weight: 500;
  font-style:  normal;
  font-display: swap;
}

/* ── Bold (700) ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Bold.woff2') format('woff2'),
       url('../fonts/Dubai-Bold.woff')  format('woff');
  font-weight: 700;
  font-style:  normal;
  font-display: swap;
}

/* ── Apply to document ───────────────────────────────────────────────────── */
/* DDS Spec: body { font-family: "your_font_family" }                        */
/* Source: https://designsystem.dubai.ae/developers/font-family.md           */

body {
  font-family: 'Dubai', 'Segoe UI', Arial, sans-serif;
}