/* Override Houzez icons.css @font-face to add font-display:swap.
 * icons.css's declaration has no font-display directive, which makes the
 * browser block invisible-text rendering for ~3s while the icon font loads
 * (PageSpeed measured a 1,070 ms FCP loss). This rule appears later in HTML
 * source order than icons.css's <link>, so per CSS Fonts spec ("last
 * @font-face for the same family wins") our font-display:swap applies.
 *
 * Path math: this file lives in /wp-content/themes/houzez-child/assets/css/.
 * From there, the parent fonts dir is ../../../houzez/fonts/. */
@font-face {
    font-family: 'houzez-iconfont';
    src: url('../../../houzez/fonts/houzez-iconfont.woff?jd28ud') format('woff'),
         url('../../../houzez/fonts/houzez-iconfont.ttf?jd28ud') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
