// 🎯 reem_congruence.rs — REEM Congruence Matcher
/// Returns if both tone and intent match exactly (case-insensitive)
pubfnis_reem_match(a:&str, b:&str)->bool{
a.eq_ignore_ascii_case(b)}/// Threshold for congruence scoring between tone and facial expression
pubstructCongruenceThreshold{pubmin:f32,
pubmax:f32,
}