/*
 * Design-mode icon font declarations.
 *
 * ground_12 references the same font under two different family names:
 *   - `linearicons`       — used by `mcw-widgets.css` (the design chrome
 *                           icons: edit pencil, panel toggles, etc.)
 *   - `mcfw-linearicons`  — declared by `mc-fonts.css` but not actually
 *                           consumed there; kept for symmetry in case
 *                           other widget CSS references it.
 *
 * Both point at the same `.ttf` file lifted from the Android template
 * at `/PLAYGROUND/_templates_/mc-android-template/core/src/main/res/font/`.
 * ground_12's `_fwt/fonts/linearicons/` directory was empty in the
 * checkout, so the icons never rendered there either; this file is what
 * actually makes the chrome glyphs visible.
 */

@font-face {
    font-family: 'linearicons';
    src: url('/_core/_fwt/fonts/linearicons/linearicons.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'mcfw-linearicons';
    src: url('/_core/_fwt/fonts/linearicons/linearicons.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
