// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
// See LICENSE in the project root for license information.

// ---------------------------------------------------------------------

// sass-lint:disable no-duplicate-properties

@import '../utilityVariables/fontUtils';

// @font-face is not supported in SassDocs

// default/en font-face across themes
@mixin font-face($family, $weight, $filename, $unicode-range: null) {
  @font-face {
    font-family: "#{$family}";
    font-weight: $weight;
    font-style: normal;
    font-display: fallback;
    src: url("#{$i18n-font-base-path-en}/#{$filename}.woff2") format("woff2");
    @if $unicode-range != null {
      unicode-range: $unicode-range;
    }
  }
}
