////
/// @group helpers
////

// Disables linting for this file only
// sass-lint:disable no-css-comments, no-duplicate-properties, property-sort-order, indentation

@import "../tools/exports";

/// Font Face - NTA
///
/// Outputs the font-face declaration for NTA at the root of the CSS document
/// the first time it is called.
///
/// @access private

@mixin _govuk-font-face-nta {
  @include govuk-exports("govuk/helpers/font-face") {
    @at-root {
      /*! Copyright (c) 2011 by Margaret Calvert & Henrik Kubel. All rights reserved. The font has been customised for exclusive use on gov.uk. This cut is not commercially available. */

      @font-face {
        font-family: "nta";
        src: govuk-font-url("light-2c037cf7e1-v1.eot");
        src: govuk-font-url("light-2c037cf7e1-v1.eot?#iefix") format("embedded-opentype"),
             govuk-font-url("light-f38ad40456-v1.woff2") format("woff2"),
             govuk-font-url("light-458f8ea81c-v1.woff") format("woff");
        font-weight: normal;
        font-style: normal;
        font-display: fallback;
      }

      @font-face {
        font-family: "nta";
        src: govuk-font-url("bold-fb2676462a-v1.eot");
        src: govuk-font-url("bold-fb2676462a-v1.eot?#iefix") format("embedded-opentype"),
             govuk-font-url("bold-a2452cb66f-v1.woff2") format("woff2"),
             govuk-font-url("bold-f38c792ac2-v1.woff") format("woff");
        font-weight: bold;
        font-style: normal;
        font-display: fallback;
      }

      @font-face {
        font-family: "ntatabularnumbers";
        src: govuk-font-url("light-tabular-498ea8ffe2-v1.eot");
        src: govuk-font-url("light-tabular-498ea8ffe2-v1.eot?#iefix") format("embedded-opentype"),
             govuk-font-url("light-tabular-851b10ccdd-v1.woff2") format("woff2"),
             govuk-font-url("light-tabular-62cc6f0a28-v1.woff") format("woff");
        font-weight: normal;
        font-style: normal;
        font-display: fallback;
      }

      @font-face {
        font-family: "ntatabularnumbers";
        src: govuk-font-url("bold-tabular-357fdfbcc3-v1.eot");
        src: govuk-font-url("bold-tabular-357fdfbcc3-v1.eot?#iefix") format("embedded-opentype"),
             govuk-font-url("bold-tabular-b89238d840-v1.woff2") format("woff2"),
             govuk-font-url("bold-tabular-784c21afb8-v1.woff") format("woff");
        font-weight: bold;
        font-style: normal;
        font-display: fallback;
      }
    }
  }
}
