/* fonts.css */
/* Gordon Houtman 2025-11-30 00:08 */
/* about 60% of the code needed for Google Fonts to work */
/* expo1892.com/assets/css/fonts.css */


/* the following code is provided directly 
by the Google Fonts website. */


.noto-sans-<uniquifier> {
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.noto-serif-<uniquifier> {
	font-family: "Noto Serif", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.noto-sans-mono-<uniquifier> {
	font-family: "Noto Sans Mono", monospace;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.noto-sans-arabic-<uniquifier> {
	font-family: "Noto Sans Arabic", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.noto-kufi-arabic-<uniquifier> {
	font-family: "Noto Kufi Arabic", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}

.noto-naskh-arabic-<uniquifier> {
	font-family: "Noto Naskh Arabic", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}


/* this i wrote */



.arabic {
	direction: rtl;
	text-align: right;
}

.english {
	direction: ltr;
	text-align: left;
}
        
/*-------*/

body {
	font-family: 'Noto Sans', sans-serif;
}

.sans {
	font-family: 'Noto Sans', sans-serif;
}

.serif {
	font-family: 'Noto Serif', serif;
}

.mono {
	font-family: 'Noto Sans Mono', monospace;
}

.ar-sans {
	font-family: "Noto Sans Arabic", sans-serif;
}

.ar-kufi {
	font-family: "Noto Kufi Arabic", sans-serif;
}

.ar-naskh {
	font-family: "Noto Naskh Arabic", serif;
}




