/**
 * Brand typography.
 *
 * The site face is LNA (Loew Next Arabic), declared as @font-face in
 * assets/css/helper-4.0.0.min.css and applied to body from there. This file
 * catches the places that opted out of it:
 *
 *   .footer .right p   asked for ChaletBook, a font that has no @font-face
 *                      anywhere on the site, so the footer line fell back to
 *                      the browser's generic sans-serif.
 *
 * Fixed in style.css as well, but LiteSpeed keeps serving a stale minified copy
 * of that file from its optimizer cache, and this stylesheet is enqueued with
 * data-no-optimize so it is never minified and an edit is live immediately.
 * See hv3_skip_optimizer() in functions.php.
 *
 * LNA ships three weights only: 400 (Medium), 600 (ExtraBold), 700 (Heavy).
 * Anything asking for 800 or 900 resolves to the 700 face.
 */

.footer .right p {
	font-family: 'LNA', sans-serif;
}
