//! Compile-time bytes of the bundled Noto fonts.
//!
//! These are the deterministic default faces used by [`super::default_provider`].
//! They live under `zenith-core/assets/fonts/` so the crate is self-contained
//! when published, and are exposed publicly so other workspace crates (e.g.
//! `zenith-layout`) can reuse the exact same bytes without embedding a copy.
/// Noto Sans Regular — `"Noto Sans"`, weight 400, normal.
pub const NOTO_SANS_REGULAR: & = include_bytes!;
/// Noto Sans Bold — `"Noto Sans"`, weight 700, normal.
pub const NOTO_SANS_BOLD: & = include_bytes!;
/// Noto Sans Italic — `"Noto Sans"`, weight 400, italic.
pub const NOTO_SANS_ITALIC: & = include_bytes!;
/// Noto Sans Bold Italic — `"Noto Sans"`, weight 700, italic.
pub const NOTO_SANS_BOLD_ITALIC: & =
include_bytes!;
/// Noto Sans Mono Regular — `"Noto Sans Mono"`, weight 400, normal.
pub const NOTO_SANS_MONO_REGULAR: & =
include_bytes!;
/// Noto Sans Mono Bold — `"Noto Sans Mono"`, weight 700, normal.
pub const NOTO_SANS_MONO_BOLD: & = include_bytes!;
/// Noto Serif Regular — `"Noto Serif"`, weight 400, normal.
pub const NOTO_SERIF_REGULAR: & = include_bytes!;
/// Noto Serif Bold — `"Noto Serif"`, weight 700, normal.
pub const NOTO_SERIF_BOLD: & = include_bytes!;
/// Noto Serif Italic — `"Noto Serif"`, weight 400, italic.
pub const NOTO_SERIF_ITALIC: & = include_bytes!;
/// Noto Serif Bold Italic — `"Noto Serif"`, weight 700, italic.
pub const NOTO_SERIF_BOLD_ITALIC: & =
include_bytes!;