////
///
/// Character Typography Tags Module
/// ===========================================================================
///
/// @group Font
/// @author Scape Agency
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @todo None
/// @access public
///
////

// ============================================================================
// Use
// ============================================================================

@use "../dev" as *;
@use "../mixins" as *;
@use "../variables/" as *; ///
/// Applies the default font settings to the `<html>` element.
///
/// Ensures that the entire document inherits these optimized font settings, providing a consistent
/// typographic foundation across all text elements.
///
/// @example scss - Applying to HTML
///   html {
///     @include font--default;
///   }
///
html {
    @include font--default;

    // Support for emoji rendering on systems that recognize font-variant-emoji
    // @supports (font-variant-emoji: emoji) {
    //     font-variant-emoji: emoji;
    // }
}
