Imagine you have a brilliant assistant who can spot a lie instantly when they read it on paper, but when you say the exact same sentence out loud, they suddenly can't tell if it's true or false. That's the core finding of VeriSpeak: the same large audio language models (LALMs) that handle text-based fact verification competently develop something close to amnesia when claims arrive as speech. The benchmark itself is cleanly constructed: 3,879 spoken claims covering temporal facts ("The Berlin Wall fell in 1989"), geographical facts ("Paris is the capital of France"), and relational facts ("Marie Curie won the Nobel Prize in Chemistry"), balanced evenly between true and false. The claims are designed to probe whether factual verification ability — a skill these models demonstrably possess in text — transfers to the speech modality. The answer is: poorly. The modality gap is the paper's sharpest result. LALMs that perform well on written claim verification show consistent accuracy drops when the identical claims are presented as audio. This isn't a transcription error problem — the models aren't misunderstanding the words. They're failing at a deeper level where the speech representation doesn't activate the same factual reasoning circuits that text does. The gap suggests that LALMs process speech and text through fundamentally different internal pathways, even when the semantic content is identical. Retrieval-augmented generation (RAG) — the standard fix for factual grounding — provides surprisingly limited help. The authors identify a specific failure mode: models conflate the retrieved textual evidence with the spoken claim itself, rather than using the evidence to independently evaluate the claim. In effect, the model reads the Wikipedia passage and nods along instead of comparing it against what it heard. This conflation problem is a direct analogy to confirmation bias in human reasoning. The breakthrough comes from pairing retrieval with explicit reasoning. A thinking-tuned LALM — one trained to externalize its chain-of-thought before committing to a verdict — reaches 86.1% accuracy, the benchmark's best result. The reasoning step forces the model to articulate the comparison between what was said and what the evidence states, breaking the conflation loop. This is the paper's most actionable finding: the bottleneck isn't knowledge access, it's structured comparison. The experimental design covers multiple LALMs but the paper's main limitation is scope. At 3,879 claims, VeriSpeak is a probe benchmark — useful for diagnosis, not for training. The claims are factoid-style assertions, not the complex, contextual, hedged claims that characterize real-world misinformation in podcasts and political speeches. The gap between "Napoleon was born in 1769" and "experts say the vaccine may have contributed to excess mortality" is vast, and VeriSpeak doesn't bridge it. Still, VeriSpeak earns its EMNLP 2026 acceptance by clearly isolating a specific, measurable problem — the text-speech modality gap in factual reasoning — and demonstrating that the fix isn't more retrieval but better reasoning architecture. The dataset is public on Hugging Face, which means the community can immediately reproduce and extend. The open question is whether the 86.1% ceiling is a property of thinking-tuned models generally or of this specific benchmark's factoid structure.