/**
 * Dubai Media Web Font
 *
 * Usage:
 *   1. Add this:
 *      <link rel="preconnect" href="https://assets.dmi.ae">
 *     <link rel="preconnect" href="https://assets.dmi.ae" crossorigin>
 *     <link href="https://assets.dmi.ae/fonts/style.css" rel="stylesheet">
 *   2. or this:
 *      <style>
 *         @import url('https://assets.dmi.ae/fonts/style.css');
 *      </style>
 *
 * Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face
 *
 * @author: isidiya@dmi.ae
 */

@font-face {
	font-family: 'DMIFont-Regular';
	font-weight: normal;
	font-style: 'normal';
	src: url('https://assets.dmi.ae/fonts/DMIFont-Regular.woff2') format('woff2'),
		url('https://assets.dmi.ae/fonts/DMIFont-Regular.woff') format('woff');
}
@font-face {
	font-family: 'DMIFont-Medium';
	font-weight: 500; /* Medium */
	font-style: 'normal';
	src: url('https://assets.dmi.ae/fonts/DMIFont-Medium.woff2') format('woff2'),
		url('https://assets.dmi.ae/fonts/DMIFont-Medium.woff') format('woff');
}
@font-face {
	font-family: 'DMIFont-Bold';
	font-weight: bold;
	font-style: 'normal';
	src: url('https://assets.dmi.ae/fonts/DMIFont-Bold.woff2') format('woff2'),
		url('https://assets.dmi.ae/fonts/DMIFont-Bold.woff') format('woff');
}
